home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 15
/
CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso
/
CUCD
/
Graphics
/
Ghostscript
/
source
/
pdf2ps.bat
< prev
next >
Wrap
DOS Batch File
|
1996-03-22
|
376b
|
22 lines
@echo off
@rem Convert PDF to PostScript.
if "%1"=="" goto usage
if "%2"=="" goto usage
echo -dNODISPLAY -dNOPAUSE >_.at
:cp
if "%3"=="" goto doit
echo %1 >>_.at
shift
goto cp
:doit
rem Watcom C deletes = signs, so use # instead.
gs -q -sPSFile#%2 @_.at %1 -c quit
goto end
:usage
echo "Usage: pdf2ps [-dPSBinaryOK] [-dPSLevel1] [-dPSNoProcSet] input.pdf output.ps"
:end